home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- CEBSwitchboard.h
-
- Interface for the Switchboard Class
-
- Copyright © 1992 Joe Zobkiw. All rights reserved.
-
- ******************************************************************************/
-
- #define _H_CEBSwitchboard
-
- #include "CSwitchboard.h" /* Interface for its superclass */
-
- class CEBSwitchboard : public CSwitchboard { /* Class Declaration */
-
- public:
- /** Instance Methods **/
- void IEBSwitchboard(void); /* Initialization */
-
- /* event processing */
- virtual void DispatchEvent(EventRecord *macEvent);
- virtual void DoIdle(EventRecord *macEvent);
-
- };